home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / TEX-DIST / !TARZ / SCANFILE00 < prev    next >
Text File  |  1991-09-29  |  219b  |  21 lines

  1. BEGIN {
  2.       char x[ 128 ];
  3.       y=1; }
  4.  
  5. /' /
  6.    {
  7.    if (y==1)
  8.       {
  9.       x=$1;
  10.       y=0;
  11.       }
  12.    else
  13.       x=substr($1,2);
  14.  
  15.    if (x=="File")
  16.       {
  17.       printf("%s\n",substr($2,3));
  18.       }
  19.    }
  20.  
  21. END   {}